home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 1997 / HAM Radio 1997.iso / vcls / heapchk2 / heap.dpr next >
Text File  |  1996-04-08  |  432b  |  20 lines

  1. program Heap;
  2.  
  3. uses
  4.   HeapChk,   {-- should be the first Entry --}
  5.   Forms,
  6.   Heaptst in 'HEAPTST.PAS' {Form1};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   {-- use this statement to prevent the display of none deallocated
  12.       blocks used by the runtime.
  13.       To see the function, comment this line out and look in DUMP.TXT
  14.       after execution
  15.   --}
  16.   HeapTestClear;
  17.   Application.CreateForm(TForm1, Form1);
  18.   Application.Run;
  19. end.
  20.